home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / Mesa-2.2 / src-tk / Makefile.BeOS < prev    next >
Encoding:
Makefile  |  1997-02-03  |  1.4 KB  |  68 lines

  1. # Makefile for BeOS contributed by Tinic Uro <5uro@informatik.uni-hamburg.de>
  2.  
  3. # Mesa 3-D graphics library
  4. # Version:  2.2
  5. # Copyright (C) 1995-1997  Brian Paul
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Library General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. # Library General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Library General Public
  18. # License along with this library; if not, write to the Free
  19. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22. # $Id$
  23.  
  24. # $Log$
  25.  
  26.  
  27. ##### MACROS #####
  28.  
  29. VPATH = RCS
  30.  
  31. STDDIR = ./
  32. INCDIR = ../include
  33. LIBDIR = ../lib
  34.  
  35. OBJECTS = font.o image.o shapes.o tkbeos.o
  36.  
  37.  
  38.  
  39. ##### RULES #####
  40.  
  41. .c.o:
  42.     $(CC) -c -i- -I$(INCDIR) -I$(STDDIR) $(CFLAGS) $<
  43.  
  44. tkbeos.o:
  45.     $(CC) -c -i- -I$(INCDIR) -I$(STDDIR) $(CFLAGS) tkbeos.cpp
  46.  
  47.  
  48.  
  49. ##### TARGETS #####
  50.  
  51. default:
  52.     @echo "Specify a target configuration"
  53.  
  54. clean:
  55.     -rm *.o *~
  56.  
  57. targets: $(LIBDIR)/$(TK_LIB)
  58.  
  59. # Make the library
  60. $(LIBDIR)/$(TK_LIB): $(OBJECTS)
  61. #    $(MAKELIB) $(TK_LIB) $(OBJECTS)
  62. #    $(RANLIB) $(TK_LIB)
  63. #    mv $(TK_LIB)* $(LIBDIR)
  64.  
  65. include ../Make-config
  66.  
  67.  
  68.